This repository was archived by the owner on Mar 29, 2021. It is now read-only.
[WIP] queue: add more functions#12
Draft
pascutto wants to merge 4 commits intovocal-project:masterfrom
pascutto:queue
Draft
[WIP] queue: add more functions#12pascutto wants to merge 4 commits intovocal-project:masterfrom pascutto:queue
pascutto wants to merge 4 commits intovocal-project:masterfrom
pascutto:queue
Conversation
Collaborator
For the moment, we only generate a precondition with [disjoint]
if a function has two represented arguments of the same type.
TODO:
1. Extend the generation of the [disjoint] predication for an
arbitrary number of represented arguments
2. Check the [modifies] clause in order to generate the correct
set of [disjoint] preconditions. Example: consider the following
GOSPEL specification:
val f : 'a t -> 'a t -> 'a t -> unit
(*@ f x y z
modifies x
requires P
ensures Q *)
where ['a t] is some represented type. For this case, we should
generate the following WhyML declaration:
val f (x y z: t 'a) : unit
requires { disjoint_t x y }
requires { disjoint_t x z }
writes { x }
requires { P }
ensures { Q }
Let me explain: since argument [x] is listed in [modifies],
it must be disjoint of any other argument of type ['a t].
Otherwise, if [x] was not disjoint of [y] or [z], either [y]
or [z] could be aliased with [x], hence modified by [f]. On
the other hand, since [y] and [z] are read-only arguments,
they do not need to be disjoint from each other.
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.